home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / MVUPDAT3.ZIP / RAINBOW.ZIP / COLORS.ZIP / COLORS7.TXT < prev    next >
Text File  |  1996-04-13  |  389b  |  20 lines

  1. Macro AutoClose
  2.  
  3. Sub MAIN
  4.         On Error Goto ErrorRoutine
  5.         
  6.         If macros.bDebug Then MsgBox "start AutoClose"
  7.  
  8.         macros.SavToGlobal(NomFichier$())
  9.         macros.objectiv
  10.         Goto Done
  11.  
  12. ErrorRoutine:
  13.         On Error Goto Done
  14.         If macros.bDebug Then
  15.                 MsgBox "error " + Str$(Err) + " occurred"
  16.         End If
  17.  
  18. Done:
  19. End Sub
  20.